Method: YARD::CodeObjects::Base#[]=
- Defined in:
- lib/yard/code_objects/base.rb
permalink #[]=(key, value) ⇒ void
This method returns an undefined value.
Sets a custom attribute on the object
356 357 358 359 360 361 362 |
# File 'lib/yard/code_objects/base.rb', line 356 def []=(key, value) if respond_to?("#{key}=") send("#{key}=", value) else instance_variable_set("@#{key}", value) end end |